home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / util / dtype / PCD-DT.lha / PCD-DT / PCD-DT.readme < prev    next >
Text File  |  1999-01-10  |  2KB  |  86 lines

  1. Short:    Datatype for Photo-CD Images (43.9)
  2. Uploader: astegema@ix.urz.uni-heidelberg.de (Achim Stegemann)
  3. Author:   astegema@ix.urz.uni-heidelberg.de (Achim Stegemann)
  4. Type:     util/dtype
  5.  
  6. Version:  43.9
  7.  
  8. Requires minimum:
  9.  * OS 3.0
  10.  * MC68020
  11.  * A mounted PIPE: handler !!
  12.  * The PCD decoder 'pcdtoppm' in your path (included).
  13.  * ixemul.library V39 (not included, V41 or higher is recommended).
  14.  * render.library V29 or better (included).
  15.  
  16. Additionally recommended:
  17.  * CyberGraphX with picture.datatype V43 for 24-bit images.
  18.  * MUI 3.8 for the preferences.
  19.  
  20. With the help of the pcd.datatype, your datatype sytem is able to read Photo-CD images.
  21.  
  22. This archive is Freeware !
  23. Do with it what you want, as long as you do not remove any files from this archive !
  24.  
  25. Changes since V43.7:
  26.  
  27. 20-Oct-98  V43.9
  28. * Changed flags in memory allocation, so it can be used with VMM (Virtual Memory Manager).
  29. * Included source-code in C++
  30. * Corrected the DOS template for prefs.
  31. * Improved libinit.
  32.  
  33. The full render.library archive is also available in Aminet:dev/misc.
  34.  
  35. Internet: http://www.rzuser.uni-heidelberg.de/~astegema/
  36.  
  37. Warning:
  38. It seems, that this datatype does not work with Picasso96, but this is not for sure !
  39. If you use Picasso96, please try it and report me your result.
  40.  
  41.  
  42. Important note about the source code:
  43. *************************************
  44.  
  45. The source has been written in C++ using Maxon-C++ V3.
  46. You will find several instructions a bit strange as I have converted all C-style OS-structures
  47. to C++ OS-structures.
  48. E.g.
  49.  
  50. struct Library
  51. {
  52. struct Node lib_Node;
  53. UBYTE lib_Flags;
  54. UBYTE lib_pad;
  55. UWORD lib_NegSize;
  56. UWORD lib_PosSize;
  57. UWORD lib_Version;
  58. UWORD lib_Revision;
  59. APTR lib_IdString;
  60. ULONG lib_Sum;
  61. UWORD lib_OpenCnt;
  62. };
  63.  
  64. has been converted to
  65.  
  66. struct Library:Node // !!!!!
  67. {
  68. UBYTE lib_Flags;
  69. UBYTE lib_pad;
  70. UWORD lib_NegSize;
  71. UWORD lib_PosSize;
  72. UWORD lib_Version;
  73. UWORD lib_Revision;
  74. APTR lib_IdString;
  75. ULONG lib_Sum;
  76. UWORD lib_OpenCnt;
  77. };
  78.  
  79. This simplifies the code as I don't always need to cast variables to fit arguments
  80. in functions.
  81. Additionally C++ allows to leave away the 'struct' keyword !
  82.  
  83. If you like to recompile the source-code for your compiler, you need to adjust the
  84. source-code to C. But this should be no problem.
  85.  
  86.